home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000175_news@columbia.edu _Sat Oct 9 15:54:54 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA10546
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 9 Oct 1999 15:54:54 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA14260
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 9 Oct 1999 15:53:15 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Switching from Dos Kermit Vs. 3 to AIX Kermit Vs.7
  11. Date: 9 Oct 1999 19:53:15 GMT
  12. Organization: Columbia University
  13. Message-ID: <7to6fb$dti$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <01bf1286$4f44f4a0$87c010ac@6484>,
  17. Serge Bisson <sbisson@jri.ca> wrote:
  18. : We used to connect from a Vax platform to a Dos platform. We now want to go
  19. : from Vax to AIX.
  20. :  ...
  21. : We want to connect from the Vax server to an AIX server now
  22. : We have changed it to the following .kermrc:
  23. : def vax set par non, set flo x, set hand no, set dupl ful               
  24. :                                                                         
  25. : local ttyport                                                           
  26. : local rcvdir                                                            
  27. : assign ttyport /dev/tty1                                                
  28. : ...
  29. : set line \m(ttyport)                                                    
  30. : set receive rename-to /home/terminal/data_in                            
  31. : set file type text         ; Set type of file to text                   
  32. : set input echo on                                                          
  33. :                                                
  34. : set terminal echo local    ; So output goes in session log              
  35. : cd \m(logdir)                                                           
  36. : log session                ; Creates session.log in current directory   
  37. : log transact               ; Creates transact.log in current directory  
  38. : cd \m(tmpdir)                                                           
  39. : do vax
  40. : set carrier-watch off                                                      
  41. :            
  42. : server                                                                 
  43. : ; (End)                                                                 
  44. : The tty1 port is set at 9600.
  45. :
  46. How do you know?
  47.  
  48. : This will work when going from the Dos machine to the Unix machine. But not
  49. : from the Vax machine to the AIX machine. We get no response on the Unix
  50. : machine and the Vax machine keeps on resending.
  51. : Any ideas why we are having this trouble with AIX?
  52. You're leaving too much to chance.  Try specifying everything:
  53.  
  54.   set modem type none
  55.   set carrier-watch off
  56.   set line \m(ttyport) 
  57.   if fail exit 1 Can't assign \m(ttyport) 
  58.   set speed 9600
  59.   do vax ; (which implies SET FLOW XON/XOFF)
  60.  
  61. Now at this point, instead of entering server mode, give a CONNECT
  62. command.  Ditto at the other end.  Now everything you type on the VAX
  63. should show up on the AIX screen and vice versa.  If not, you have a
  64. fundamental communication problem: wrong port, bad cable (is it a null-
  65. modem cable?), flow-control mismatch, speed mismatch, etc etc.
  66.  
  67. The C-Kermit manual has a chapter on how to set up and check a direct
  68. serial connection between two computers; follow the directions there.
  69.  
  70. - Frank